Skip to content

Instantly share code, notes, and snippets.

@kevin-smets
kevin-smets / iterm2-solarized.md
Last active May 12, 2024 07:08
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

let themeVariables = {
'--w3m-z-index': 10000,
'--w3m-accent': '',
'--w3m-accent-color': '',
'--w3m-color-mix': '',
'--w3m-color-mix-strength': '',
'--w3m-border-radius-master': '',
'--w3m-font-size-master': '',
'--w3m-font-family': '',
'--w3m-overlay-backdrop-filter': 'blur(6px)'
let themeVariables = {
'--w3m-z-index': 10000,
'--w3m-accent': '',
'--w3m-accent-color': '',
'--w3m-color-mix': '',
'--w3m-color-mix-strength': '',
'--w3m-border-radius-master': '',
'--w3m-font-size-master': '',
'--w3m-font-family': '',
'--w3m-overlay-backdrop-filter': 'blur(6px)'
@matthewzring
matthewzring / markdown-text-101.md
Last active May 12, 2024 07:04
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers:

@Guhan-SenSam
Guhan-SenSam / 1info.md
Last active May 12, 2024 06:57
Methods to Optimizing Kivy Performance

Many people state that kivy is slow. While this may be true it is mostly due to that python is slow to run on android devices.Thus it is in the programmer's hands to properly optimize their code so as to create a performant application.

Most of the lag on android devices runing kivy apps arise due to widget creation. Widget creation remains the slowest step in a kivy app. Here are some of the methods that I follow to optimize my apps and ensure I can hit 60fps even on old devices

Optimization Methods:

@sloria
sloria / bobp-python.md
Last active May 12, 2024 06:54
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@vladstudio
vladstudio / apply.css
Last active May 12, 2024 06:53
silverbullet.md Tiniri theme
/* more Tiniri themes: https://tiniri.vlad.studio/ */
html {
--ui-font: ui-sans-serif, sans-serif !important;
--editor-font: ui-sans-serif, sans-serif !important;
--editor-width: 800px !important;
line-height: 1.5 !important;
}
html {
@akitaonrails
akitaonrails / links.md
Created November 6, 2019 01:28
Links de referência pro Episódio 66 do Canal Akitando
@dlevi309
dlevi309 / profile_defaults.md
Last active May 12, 2024 06:48
An extensive list of settings written when installing a debugging profile from developer.apple.com

Digital Car Key:

Has three sections.

defaults: {
    “com.apple.MobileBluetooth.debug” =     {
        ExtraZoningLog =         {
            EnableZoneLogging = 1;
        };
        FWStreamLogging =         {
@MrityunjaiKumar
MrityunjaiKumar / otaWebserver.ino
Created January 12, 2019 21:02
esp8266 ota web server page
/*
To upload through terminal you can use: curl -F "image=@firmware.bin" esp8266-webupdate.local/update
*/
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#ifndef STASSID